keyframes scss

84

.headline{ 
   @include keyframes(fade){
      0%{
      opacity: 1;
      }
     50%{
      opacity: 0.5;
      }
     100%{
      opacity: 0;
     }
    }
  @include animate(fade, 1s, linear, 1);
}

Comments

Submit
0 Comments